Fix: restore full-width prose images on blog, changelog, stories & whitepaper - #5631
Merged
Conversation
✅ Deploy Preview for flowforge-website ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Yndira-E
requested review from
ZJvandeWeg
and removed request for
sumitshinde-84
August 18, 2026 14:05
ZJvandeWeg
reviewed
Aug 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Description
.prose imginsrc/css/style.cssonly hadmax-width: 100%, so images render at their native pixel size instead of filling the prose column.eleventy-imgpipeline resized every markdown image to the prose column's width (650px), which is why images always looked full-width. The newnuxt/components/content/ProseImg.vuejust passes the image through with no resizing, so screenshots narrower than the column now render smaller than expected..prose:not(.prose-natural-size-images) img { width: 100%; height: auto; }to restore the fill-the-column look for blog, changelog, customer-stories, and whitepaper pages.prose-natural-size-imagesclass to handbook, docs, and the/node-red/**layout (layouts/documentation.njk), since those keep inline screenshots at their natural size.Related Issue(s)
Checklist